home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / antenna / yagiu112 / cin.c < prev    next >
C/C++ Source or Header  |  1995-08-20  |  142b  |  11 lines

  1. #include <math.h>
  2. #include "yagi.h"
  3.  
  4. double Cin(double x)
  5. {
  6.     double cix,temp,ans;
  7.     cisi(x,&cix,&temp);
  8.     ans=EULER+log(x)-cix;
  9.     return(ans);
  10. }
  11.